gusucode.com > VC++ Win32编程基础实例-源码程序 > VC++ Win32编程基础实例-源码程序/code/day01_04/codes/WinDll/WinDll.cpp

    //Download by http://www.NewXing.com
// WinDll.cpp : Defines the entry point for the DLL application.
//

#include "stdafx.h"

BOOL APIENTRY DllMain( HANDLE hModule, 
                       DWORD  ul_reason_for_call, 
                       LPVOID lpReserved
					 )
{
    return TRUE;
}